home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Multimedia / Movie3.0 / Source / Animation.h next >
Encoding:
C/C++ Source or Header  |  1995-07-03  |  357 b   |  24 lines

  1.  
  2. /*
  3.  *    Adaptor to Mark Podlipec's xanim software
  4.  */
  5.  
  6. #include "xanim/xanim.h"
  7. #import "appkit/NXBitmapImageRep.h"
  8.  
  9. @interface Animation:Object
  10. {
  11.     NXBitmapImageRep *bitmap;
  12. }
  13.  
  14. - initFrom:(const char *)fn;
  15. - free;
  16. - (NXBitmapImageRep *)bitmap;
  17. - (NXBitmapImageRep *)update;
  18. - getMaxSize:(NXSize *)size;
  19. - (NXBitmapImageRep *)next;
  20. - (BOOL) isLast;
  21.  
  22.  
  23. @end
  24.